Skip to content

Comments

Bump apexcharts from 5.4.0 to 5.6.0 in /ui/changes#5725

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/ui/changes/apexcharts-5.6.0
Open

Bump apexcharts from 5.4.0 to 5.6.0 in /ui/changes#5725
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/ui/changes/apexcharts-5.6.0

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 23, 2026

Bumps apexcharts from 5.4.0 to 5.6.0.

Release notes

Sourced from apexcharts's releases.

💎 Version 5.6.0

Bug Fixes

Critical Fix: Tooltip and Chart Interactions Restored (#5168)

  • Fixed a critical regression where tooltips were not appearing and chart interactions were completely blocked
  • The <foreignObject> element, which contains the legend wrapper, was incorrectly positioned as the last child in the SVG DOM, causing it to overlay and block all mouse events on the chart
  • Restored the correct DOM ordering by ensuring <foreignObject> is always the first child element (at the back of the z-order), allowing chart interactions to work properly
  • This issue affected all chart types including column, scatter, heatmap, bar, and others
  • The regression was introduced in v5.5.0 when accessibility features were added

Comprehensive DOM Ordering Tests

  • Added extensive test coverage to prevent future regressions of DOM element ordering

If you experienced tooltip or interaction issues in v5.5.0/v5.5.1, this release fully resolves those problems. Simply upgrade to v5.6.0 - no code changes required on your end.

💎 Version 5.5.0

Major Features

Server-Side Rendering (SSR) Support

ApexCharts now fully supports SSR for Next.js, Nuxt, SvelteKit, Astro, and other modern meta-frameworks! This has been one of the most requested features. (#4288)

Server-side rendering:

import ApexCharts from 'apexcharts/ssr'
const chartHTML = await ApexCharts.renderToHTML({
series: [{ data: [30, 40, 35, 50, 49, 60, 70] }],
chart: { type: 'bar' }
}, {
width: 500,
height: 300
})

Client-side hydration:

import ApexCharts from 'apexcharts/client'
// Hydrate specific chart
ApexCharts.hydrate(document.getElementById('my-chart'))
// Or hydrate all charts on the page
ApexCharts.hydrateAll()

Package exports:

  • Browser: import ApexCharts from 'apexcharts' (or apexcharts/client)

... (truncated)

Commits
  • f20c45a build: 5.6.0
  • 8819629 test: for foreignobject dom ordering when appending inside chart container
  • 51c69c8 fix: foreignobject blocking all interactions; fixes #5168
  • 7283a1f release: v5.5.1
  • 5fbd606 build: 5.5.1
  • e893f8c fix: use namespace instead of module in ts
  • daf1d03 fix: TypeScript type resolution for ESM imports; fixes #5165
  • 5126a02 fix: duplicate x-axis label issue in timeline charts; fixes #5164
  • d3815bc fix: add vi to globals in eslint
  • bf8f744 fix: replace jest with vi in unit tests
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [apexcharts](https://github.com/apexcharts/apexcharts.js) from 5.4.0 to 5.6.0.
- [Release notes](https://github.com/apexcharts/apexcharts.js/releases)
- [Commits](apexcharts/apexcharts.js@v5.4.0...v5.6.0)

---
updated-dependencies:
- dependency-name: apexcharts
  dependency-version: 5.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Feb 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants